net/http.Transport.connsPerHostWait (field)
8 uses
net/http (current package)
transport.go#L110: connsPerHostWait map[connectMethodKey]wantConnQueue // waiting getConns
transport.go#L1452: if t.connsPerHostWait == nil {
transport.go#L1453: t.connsPerHostWait = make(map[connectMethodKey]wantConnQueue)
transport.go#L1455: q := t.connsPerHostWait[w.key]
transport.go#L1458: t.connsPerHostWait[w.key] = q
transport.go#L1500: if q := t.connsPerHostWait[key]; q.len() > 0 {
transport.go#L1511: delete(t.connsPerHostWait, key)
transport.go#L1515: t.connsPerHostWait[key] = q
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |